Python Programming For Beginners: The Beginner’s Guide to Learning the Basics of Python. Tips and Tricks to Master Programming Quickly with Practical Examples by James Herron

Python Programming For Beginners: The Beginner’s Guide to Learning the Basics of Python. Tips and Tricks to Master Programming Quickly with Practical Examples by James Herron

Author:James Herron [Herron, James]
Language: eng
Format: epub, pdf
Published: 2020-05-23T17:00:00+00:00


1

abs(x)

The absolute value of x: the (positive) range from zero to x.

2

ceil(x)

The ceiling of x: the least integer not less than x.

3

cmp(x, y)

-1 if y>x, 0 if x == y, or 1 if y<x. It's Deprecated in Python 3. Instead usereturn (x>y)-(x<y).

4

exp(x)

The exponential of x: ex

5

fabs(x)

The absolute value of x.

6

floor(x)

The floor of x: the largest integer not bigger than x.

7

log(x)

natural logarithm of x, for x > 0.

8

log10(x)

base-10 logarithm of x for x > 0.

9

max(x1, x2,...)

The largest of its arguments: the value nearest to positive infinity



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.